home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / STRUCT3.C < prev    next >
Text File  |  1996-07-05  |  616b  |  29 lines

  1. main()
  2. {
  3. struct {
  4.    char bas_harf;
  5.    int yas;
  6.    int not;
  7.    } cocuklar[12],*point;
  8.  
  9. int index;
  10.  
  11.    for (index = 0;index < 12;index++) {
  12.       point = cocuklar + index;
  13.       point->bas_harf = 'A' + index;
  14.       point->yas = 16;
  15.       point->not = 84;
  16.    }
  17.  
  18.    cocuklar[3].yas = cocuklar[5].yas = 17;
  19.    cocuklar[2].not = cocuklar[6].not = 92;
  20.    cocuklar[4].not = 57;
  21.  
  22.    for (index = 0;index < 12;index++) {
  23.       point = cocuklar + index;
  24.       printf("%c is %d years old and got a not of %d\n",
  25.              (*point).bas_harf, cocuklar[index].yas,
  26.              point->not);
  27.    }
  28. }
  29.